home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue42 / ASP / uServerForm.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-11-19  |  687 b   |  30 lines

  1. { This is a sample form. The form can be used by the developer to maintain a list of available users,
  2.    data on the current page of each user and basically to show visually to the web master any data
  3.    relevant to him.                                                                                   }
  4. unit uServerForm;
  5.  
  6. interface
  7.  
  8. uses
  9.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  10.   StdCtrls;
  11.  
  12. type
  13.   TfrmAspServer = class(TForm)
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   frmAspServer: TfrmAspServer;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.